home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form ConnectionOptionsForm
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "Connection Options"
- ClientHeight = 1875
- ClientLeft = 1095
- ClientTop = 1485
- ClientWidth = 7065
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 2280
- Left = 1035
- LinkTopic = "Form1"
- ScaleHeight = 1875
- ScaleWidth = 7065
- Top = 1140
- Width = 7185
- Begin VB.TextBox SmtpHost
- Appearance = 0 'Flat
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 285
- Left = 4440
- TabIndex = 4
- Top = 165
- Width = 2400
- End
- Begin VB.CommandButton Cancel
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Cancel = -1 'True
- Caption = "Cancel"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 315
- Left = 2010
- TabIndex = 6
- Top = 1350
- Width = 900
- End
- Begin VB.CommandButton Ok
- Appearance = 0 'Flat
- BackColor = &H80000005&
- Caption = "Ok"
- Default = -1 'True
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 315
- Left = 990
- TabIndex = 5
- Top = 1350
- Width = 900
- End
- Begin VB.TextBox PopPassword
- Appearance = 0 'Flat
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 285
- Left = 1000
- TabIndex = 3
- Top = 825
- Width = 2400
- End
- Begin VB.TextBox PopUserName
- Appearance = 0 'Flat
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 285
- Left = 1000
- TabIndex = 2
- Top = 495
- Width = 2400
- End
- Begin VB.TextBox PopHost
- Appearance = 0 'Flat
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Height = 285
- Left = 1000
- TabIndex = 1
- Top = 165
- Width = 2400
- End
- Begin VB.Label Label6
- Alignment = 1 'Right Justify
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "SMTP Host:"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 300
- Left = 3480
- TabIndex = 9
- Top = 195
- Width = 900
- End
- Begin VB.Label Label3
- Alignment = 1 'Right Justify
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "Password:"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 300
- Left = 45
- TabIndex = 8
- Top = 840
- Width = 900
- End
- Begin VB.Label Label2
- Alignment = 1 'Right Justify
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "User Name:"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 300
- Left = 45
- TabIndex = 7
- Top = 525
- Width = 900
- End
- Begin VB.Label Label1
- Alignment = 1 'Right Justify
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- Caption = "POP Host:"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- Height = 300
- Left = 45
- TabIndex = 0
- Top = 195
- Width = 900
- End
- Attribute VB_Name = "ConnectionOptionsForm"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Cancel_Click()
- Unload Me
- End Sub
- Private Sub Form_Load()
- PopHost.Text = g_PopHost
- PopUserName.Text = g_PopUserName
- PopPassword.Text = g_PopPassword
- SmtpHost.Text = g_SmtpHost
- End Sub
- Private Sub Ok_Click()
- g_PopHost = PopHost.Text
- g_PopUserName = PopUserName.Text
- g_PopPassword = PopPassword.Text
- g_SmtpHost = SmtpHost.Text
- Unload Me
- End Sub
- Private Sub PopHost_GotFocus()
- PopHost.SelStart = 0
- PopHost.SelLength = Len(PopHost.Text)
- End Sub
- Private Sub PopPassword_GotFocus()
- PopPassword.SelStart = 0
- PopPassword.SelLength = Len(PopPassword.Text)
- End Sub
- Private Sub PopUserName_GotFocus()
- PopUserName.SelStart = 0
- PopUserName.SelLength = Len(PopHost.Text)
- End Sub
- Private Sub SmtpHost_GotFocus()
- SmtpHost.SelStart = 0
- SmtpHost.SelLength = Len(PopHost.Text)
- End Sub
-